home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 43
/
Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso
/
-websites-
/
wirenet
/
files
/
thor25_arexx.lha
/
Examples
/
ShowText_ex.thor
< prev
Wrap
Text File
|
1995-09-06
|
355b
|
27 lines
/*
*
* ShowText_ex.thor - example program for the SHOWTEXT function
*
*/
options results
thorport = address()
REQUESTFILE title '"Select text file to view:"' id '"s:"' fullpath
if(rc ~= 0) then
do
if(rc = 30) then say THOR.LASTERROR
exit
end
filename = result
SHOWTEXT file '"'filename'"' CMT
if(rc = 30) then
do
say THOR.LASTERROR
end
exit